home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / C Internet Config / IC Application Source ƒ / 68k Internet Config ƒ / IC Install.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-20  |  693 b   |  37 lines  |  [TEXT/SPM ]

  1. /*
  2.     IC Install.h
  3.     
  4. */
  5.  
  6. #pragma once
  7.  
  8. #ifndef __H_IC_Install__
  9. #define __H_IC_Install__
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. long GetVersionFromResFile(void);
  16. long GetRegisteredVersion(void);
  17. Boolean IsInstalled(FSSpec* where);
  18. void UpdateInstalledVersion(FSSpec* fss);
  19. OSErr SaveComponentToFile(FSSpec* fss);
  20. OSErr RegisterFile(FSSpec* fss);
  21. OSErr SaveICComponent(void);
  22. OSErr JustInstallICComponent(void);
  23. OSErr InstallICComponent(void);
  24. OSErr RemoveICComponent(void);
  25. void AdjustInstallMenu(short menu);
  26. void DoInstallMenu(short menu,short item);
  27. OSErr CheckICUsageVersion(void);
  28. OSErr InitializeComponentInstallation(void);
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.  
  34. #endif /* __H_IC_Install__ */
  35.  
  36.  
  37.